home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / chip-cd_2004_08.zip / 08 / Internet / Shareaza 2.0 / Shareaza_2.0.0.0.exe / Schemas / shareazaSkin.xsd < prev    next >
Extensible Markup Language  |  2003-01-13  |  979b  |  31 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <schema targetNamespace="http://www.shareaza.com/schemas/shareazaSkin.xsd" version="1.0" xmlns="http://www.w3.org/2001/XMLSchema">
  4.  
  5.     <element name="shareazaSkins">
  6.         <complexType>
  7.             <element name="shareazaSkin" type="skinType" minOccurs="1" maxOccurs="unbounded"/>
  8.         </complexType>
  9.     </element>
  10.     
  11.     <complexType name="skinType">
  12.         <attribute name="name" type="string"/>
  13.         <attribute name="author" type="string"/>
  14.         <attribute name="link" type="uriReference"/>
  15.         <attribute name="email" type="string"/>
  16.         <attribute name="version" type="decimal"/>
  17.         <attribute name="type">
  18.             <simpleType base="string">
  19.                 <enumeration value="Skin"/>
  20.                 <enumeration value="Language"/>
  21.             </simpleType>
  22.         </attribute>
  23.         <attribute name="language" type="string"/>
  24.         <attribute name="description" type="string"/>
  25.         <attribute name="comments" type="string"/>
  26.         <attribute name="SHA1" type="string"/>
  27.     </complexType>
  28.  
  29. </schema>
  30.  
  31.